#!/bin/bash
# Infinite loop to send a heartbeat every minute
while true; do
# Send the heartbeat using curl
curl -X GET "Your Link"
# Wait for 60 seconds before sending the next heartbeat
sleep 60
done
curl -X GET "Your Link"
.